home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 …ember: Reference Library / Dev.CD Dec 97 RL.toast / What's New / • What was new 11⁄97 / Development Kits / AIAT 1.0.1 / Examples / Sources / PowerPlantStorage / PowerPlantStorage.cp < prev    next >
Encoding:
Text File  |  1997-09-11  |  346 b   |  12 lines  |  [TEXT/CWIE]

  1. // PowerPlantStorage.cp
  2. //    Copyright:    © 1994 - 1996 by Apple Computer, Inc., all rights reserved.
  3.  
  4.  
  5.  
  6. #include "PowerPlantStorage.h"
  7. #include "PowerPlantStoreStream.h"
  8.  
  9. IAStorage* MakePowerPlantStorage(short vRef, long dirId, const StringPtr name, OSType c, OSType t) {
  10.     return IAMakeStorage(new PowerPlantStoreStream(vRef, dirId, name, c, t));
  11. }
  12.